IFID Generator

This page randomly generates an IFID for you to use in a new Interactive Fiction project, written in TADS or any other Babel-aware authoring system. The IFID below has just been generated for your use.

Your New IFID: A2ECDCC6-078B-4C11-A0BB-FF2928368E06

Generate a new IFID
What's an IFID?

How to use this IFID in your game

If you're using TADS 3, the IFID goes in your versionInfo object:

   versionInfo: GameID
     IFID = 'A2ECDCC6-078B-4C11-A0BB-FF2928368E06'
     name = 'My Game'
     // etc
   ;

With TADS 2, it goes in your getGameInfo function:

   getGameInfo: function
   {
     return ['IFID', 'A2ECDCC6-078B-4C11-A0BB-FF2928368E06',
             'Name', 'My Game',
             ...etc... ];
   }

If you're using another authoring system, consult your system's user's manual to find out how to use an IFID in your game.